toJson method
Converts an object to JSON.
Implementation
@override
Map<String, dynamic> toJson() {
final returnValue = <String, dynamic>{
'\$hash': '75a3f765',
'\$name': 'BindAuthKeyInner',
'nonce': nonce,
'tempAuthKeyId': tempAuthKeyId,
'permAuthKeyId': permAuthKeyId,
'tempSessionId': tempSessionId,
'expiresAt': expiresAt.toIso8601String(),
};
// Finished toJson.
return returnValue;
}