fromMap static method

SMapGuatemalaColors fromMap(
  1. Map<String, Color?> map
)

Implementation

static SMapGuatemalaColors fromMap(Map<String, Color?> map) {
  return SMapGuatemalaColors(
    gtQC: map["GT-QC"],
    gtZA: map["GT-ZA"],
    gtJU: map["GT-JU"],
    gtJA: map["GT-JA"],
    gtCQ: map["GT-CQ"],
    gtIZ: map["GT-IZ"],
    gtSR: map["GT-SR"],
    gtPR: map["GT-PR"],
    gtTO: map["GT-TO"],
    gtSO: map["GT-SO"],
    gtSA: map["GT-SA"],
    gtSU: map["GT-SU"],
    gtGU: map["GT-GU"],
    gtES: map["GT-ES"],
    gtCM: map["GT-CM"],
    gtAV: map["GT-AV"],
    gtSM: map["GT-SM"],
    gtRE: map["GT-RE"],
    gtQZ: map["GT-QZ"],
    gtPE: map["GT-PE"],
    gtHU: map["GT-HU"],
    gtBV: map["GT-BV"],
  );
}