toMap method
Creates a Map object describes the payment object.
Implementation
Map<String, dynamic> toMap() {
return <String, dynamic>{
'identifier': identifier,
'keyIdentifier': keyIdentifier,
'nonce': nonce,
'signature': signature,
'timestamp': timestamp,
};
}