mapFromJson static method
Implementation
static Map<String, BaseRolloutStrategyAttribute> mapFromJson(
Map<String, dynamic>? json) {
final map = <String, BaseRolloutStrategyAttribute>{};
if (json != null && json.isNotEmpty) {
json.forEach((String key, dynamic value) =>
map[key] = BaseRolloutStrategyAttribute.fromJson(value));
}
return map;
}