Creates the change event that will be emitted by the checkbox.
(isChecked: boolean)
| 123 | |
| 124 | /** Creates the change event that will be emitted by the checkbox. */ |
| 125 | protected _createChangeEvent(isChecked: boolean) { |
| 126 | const event = new MatCheckboxChange(); |
| 127 | event.source = this; |
| 128 | event.checked = isChecked; |
| 129 | return event; |
| 130 | } |
| 131 | |
| 132 | /** Gets the element on which to add the animation CSS classes. */ |
| 133 | protected _getAnimationTargetElement() { |