ImageAllowlist.fromJson constructor

ImageAllowlist.fromJson(
  1. Map json_
)

Implementation

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