Rectangle.fromJson constructor
Rectangle.fromJson(
- List value
Implementation
factory Rectangle.fromJson(List<dynamic> value) =>
Rectangle(value.map((e) => e as num).toList());
factory Rectangle.fromJson(List<dynamic> value) =>
Rectangle(value.map((e) => e as num).toList());