toJsonForProtocol method
Returns a JSON structure of the model, optimized for Protocol communication.
Implementation
@override
Map<String, dynamic> toJsonForProtocol() {
return {
'canSeeUserName': canSeeUserName,
'canSeeFullName': canSeeFullName,
'canEditUserName': canEditUserName,
'canEditFullName': canEditFullName,
'canEditUserImage': canEditUserImage,
};
}