toMap method

Map<String, dynamic> toMap()

Convert to a map.

Implementation

Map<String, dynamic> toMap() {
  return {
    'merchantId': this.merchantId,
    'secretKey': this.secretKey,
    'isDev': this.isDev,
  };
}