toJson method
Implementation
Map<String, dynamic> toJson() {
final creationDate = this.creationDate;
final mfaAuthenticated = this.mfaAuthenticated;
return {
if (creationDate != null) 'CreationDate': creationDate,
if (mfaAuthenticated != null) 'MfaAuthenticated': mfaAuthenticated,
};
}