StretchedPictureFill.fromJson constructor

StretchedPictureFill.fromJson(
  1. Map json_
)

Implementation

StretchedPictureFill.fromJson(core.Map json_)
  : this(
      contentUrl: json_['contentUrl'] as core.String?,
      size:
          json_.containsKey('size')
              ? Size.fromJson(
                json_['size'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );