toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final etag = this.etag;
  final isSuperAdminRole = this.isSuperAdminRole;
  final isSystemRole = this.isSystemRole;
  final kind = this.kind;
  final roleDescription = this.roleDescription;
  final roleId = this.roleId;
  final roleName = this.roleName;
  final rolePrivileges = this.rolePrivileges;
  return {
    'etag': ?etag,
    'isSuperAdminRole': ?isSuperAdminRole,
    'isSystemRole': ?isSystemRole,
    'kind': ?kind,
    'roleDescription': ?roleDescription,
    'roleId': ?roleId,
    'roleName': ?roleName,
    'rolePrivileges': ?rolePrivileges,
  };
}