toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final familyRole = this.familyRole;
final isSharingAllowed = this.isSharingAllowed;
final isSharingDisabledByFop = this.isSharingDisabledByFop;
return {
'familyRole': ?familyRole,
'isSharingAllowed': ?isSharingAllowed,
'isSharingDisabledByFop': ?isSharingDisabledByFop,
};
}