GooglePayResponse.fromMap constructor
GooglePayResponse.fromMap(
- Map map
Implementation
GooglePayResponse.fromMap(Map<dynamic, dynamic> map)
: status = map['status'],
result = map['result'] != null ? parseResult(map['result']) : null,
errorCode = map['errorCode'],
errorMessage = map['errorMessage'],
errorDescription = map['errorDescription'];