toJsonForProtocol method

  1. @override
Map<String, dynamic> toJsonForProtocol()

Returns a JSON structure of the model, optimized for Protocol communication.

Implementation

@override
Map<String, dynamic> toJsonForProtocol() {
  return {
    if (id != null) 'id': id,
    'userIdentifier': userIdentifier,
    if (userName != null) 'userName': userName,
    if (fullName != null) 'fullName': fullName,
    if (email != null) 'email': email,
    'created': created.toJson(),
    if (imageUrl != null) 'imageUrl': imageUrl,
    'scopeNames': scopeNames.toJson(),
    'blocked': blocked,
  };
}