toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = <String, dynamic>{};
  data['clientRoleRelId'] = clientRoleRelId;
  data['permission'] = permission;
  data['createdById'] = createdById;
  data['createdDateTime'] = createdDateTime;
  data['client'] = client;
  data['role'] = role;
  return data;
}