fromMap static method

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

Implementation

static SMapMontenegroColors fromMap(Map<String, Color?> map) {
  return SMapMontenegroColors(
    me01: map["ME-01"],
    me02: map["ME-02"],
    me03: map["ME-03"],
    me04: map["ME-04"],
    me05: map["ME-05"],
    me06: map["ME-06"],
    me07: map["ME-07"],
    me08: map["ME-08"],
    me09: map["ME-09"],
    me10: map["ME-10"],
    me11: map["ME-11"],
    me12: map["ME-12"],
    me13: map["ME-13"],
    me14: map["ME-14"],
    me15: map["ME-15"],
    me16: map["ME-16"],
    me17: map["ME-17"],
    me18: map["ME-18"],
    me19: map["ME-19"],
    me20: map["ME-20"],
    me21: map["ME-21"],
    meSLK: map["ME-SLK"],
  );
}