StackPack.fromJson constructor

StackPack.fromJson(
  1. Map json_
)

Implementation

StackPack.fromJson(core.Map json_)
  : this(
      descriptions: (json_['descriptions']
              as core.Map<core.String, core.dynamic>?)
          ?.map((key, value) => core.MapEntry(key, value as core.String)),
      iconDataURL: json_['iconDataURL'] as core.String?,
      id: json_['id'] as core.String?,
      title: json_['title'] as core.String?,
    );