memberName property

String memberName
final

The name of the output member (field or getter) declared on the directive class.

For example, "onChange" in

class User {
  @Input('change')
  Stream get onChange;
}

Implementation

final String memberName;