InstancePropertyValueRange.fromJson constructor

InstancePropertyValueRange.fromJson(
  1. List range
)

Implementation

factory InstancePropertyValueRange.fromJson(List<dynamic> range) =>
    InstancePropertyValueRange(
      begin: range.first as num,
      end: range[1] as num,
      step: range[2] as num,
    );