(flag: BorderFlag | "")
| 123 | } |
| 124 | |
| 125 | setBorderFlag(flag: BorderFlag | "") { |
| 126 | if (!flag) { |
| 127 | return this; |
| 128 | } |
| 129 | |
| 130 | this.borderFlags[flag] = true; |
| 131 | return this; |
| 132 | } |
| 133 | |
| 134 | setId(id: string) { |
| 135 | this.id = id; |
no outgoing calls
no test coverage detected