Bin.fromJson constructor

Bin.fromJson(
  1. Map json_
)

Implementation

Bin.fromJson(core.Map json_)
    : this(
        density: json_['density'],
        end: json_['end'],
        start: json_['start'],
      );