LfA2aV1StringList.fromJson constructor

LfA2aV1StringList.fromJson(
  1. Map json_
)

Implementation

LfA2aV1StringList.fromJson(core.Map json_)
  : this(
      list: (json_['list'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );