all static method

dynamic all()

Implementation

static all(){
  return [
    new PaymentMethod(
        id: 2,
        title: "MTN",
        logo: "mtn_money.jpg",
        reference: "MTN_CI",
        countryCode: "CI",
        countryId: 384,
        currencyCode: "XOF",
        isActive: true,
        fees: "0",
        type: TYPE_MOBILE
    ),
    new PaymentMethod(
        id: 3,
        title: "Orange",
        logo: "orange_money.jpg",
        reference: "ORANGE_CI",
        countryCode: "CI",
        countryId: 384,
        currencyCode: "XOF",
        isActive: true,
        fees: "0",
        type: TYPE_MOBILE
    )
  ];
}