fromMap static method

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

Implementation

static SMapBangladeshColors fromMap(Map<String, Color?> map) {
  return SMapBangladeshColors(
    bdA: map["BD-A"],
    bdB: map["BD-B"],
    bdC: map["BD-C"],
    bdD: map["BD-D"],
    bdE: map["BD-E"],
    bdF: map["BD-F"],
    bdG: map["BD-G"],
  );
}