Size.fromJson constructor
Size.fromJson(
- Map json_
Implementation
Size.fromJson(core.Map json_)
: this(
height:
json_.containsKey('height') ? json_['height'] as core.int : null,
width: json_.containsKey('width') ? json_['width'] as core.int : null,
);