toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'version': version,
    'cid': cid,
    'currency': currency,
    'amount': amount,
    'cartid': cartid,
    'signatureKey': signatureKey,
    'returnUrl': returnUrl,
    'email': email,
    'mobileNo': mobileNo,
    'firstName': firstName,
    'lastName': lastName,
    'productDescription': productDescription,
    'billingStreet': billingStreet,
    'billingPostCode': billingPostCode,
    'billingCity': billingCity,
    'billingState': billingState,
    'billingCountry': billingCountry,
    'callbackUrl': callbackUrl,
    'isProd': isProd
  };
}