PaymentFailureResponse.fromMap constructor

PaymentFailureResponse.fromMap(
  1. Map map
)

Implementation

PaymentFailureResponse.fromMap(Map<dynamic, dynamic> map)
    : code = map["code"] as int?,
      message = map["message"] as String?;