Payment_Methods constructor

Payment_Methods({
  1. String? name,
  2. String? method,
  3. bool? is_enabled,
  4. String? public_key,
  5. String? private_key,
  6. String? api_url,
})

Implementation

Payment_Methods(
    {this.name,
    this.method,
    this.is_enabled,
    this.public_key,
    this.private_key,
    this.api_url});