toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appGroupId = this.appGroupId;
final attributes = this.attributes;
final channelId = this.channelId;
final channelUri = this.channelUri;
final createdAt = this.createdAt;
final displayName = this.displayName;
final email = this.email;
final lastModifiedAt = this.lastModifiedAt;
final name = this.name;
final organization = this.organization;
final status = this.status;
return {
'appGroupId': ?appGroupId,
'attributes': ?attributes,
'channelId': ?channelId,
'channelUri': ?channelUri,
'createdAt': ?createdAt,
'displayName': ?displayName,
'email': ?email,
'lastModifiedAt': ?lastModifiedAt,
'name': ?name,
'organization': ?organization,
'status': ?status,
};
}