$Dimensions.fromJson constructor

$Dimensions.fromJson(
  1. Map json_
)

Implementation

$Dimensions.fromJson(core.Map json_)
  : this(
      heightPixels: json_['heightPixels'] as core.int?,
      widthPixels: json_['widthPixels'] as core.int?,
    );