fromMap static method

dynamic fromMap(
  1. Map<String, dynamic> json
)

Implementation

static fromMap(Map<String, dynamic> json) => BaseExchangeRate(
      active: json["active"] == null ? null : json["active"],
      terms: json["terms"] == null ? null : json["terms"],
    );