toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final name = this.name;
  final plannableStatus = this.plannableStatus;
  final userListType = this.userListType;
  return {
    'displayName': ?displayName,
    'name': ?name,
    'plannableStatus': ?plannableStatus,
    'userListType': ?userListType,
  };
}