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 {
    '__className__': 'serverpod_auth_core.UserProfileImage',
    if (id != null) 'id': id?.toJson(),
    'userProfileId': userProfileId.toJson(),
    if (userProfile != null) 'userProfile': userProfile?.toJsonForProtocol(),
    'createdAt': createdAt.toJson(),
    'storageId': storageId,
    'path': path,
    'url': url.toJson(),
  };
}