$WebAppIcon.fromJson constructor

$WebAppIcon.fromJson(
  1. Map json_
)

Implementation

$WebAppIcon.fromJson(core.Map json_)
    : this(
        imageData: json_.containsKey('imageData')
            ? json_['imageData'] as core.String
            : null,
      );