Padding.fromJson constructor

Padding.fromJson(
  1. Map json_
)

Implementation

Padding.fromJson(core.Map json_)
    : this(
        bottom: json_['bottom'] as core.int?,
        left: json_['left'] as core.int?,
        right: json_['right'] as core.int?,
        top: json_['top'] as core.int?,
      );