Range class

A set of ordered quantities defined by a low and high limit.

Annotations
  • @freezed

Constructors

Range({@JsonKey(name: 'ID') String? id, @JsonKey(name: 'Low') Quantity? low, @JsonKey(name: 'High') Quantity? high})
factory
Range.fromJson(Map<String, dynamic> json)
factory

Properties

copyWith → $RangeCopyWith<Range>
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
high Quantity?
The high limit. The boundary is inclusive.
no setterinherited
id String?
no setterinherited
low Quantity?
The low limit. The boundary is inclusive.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited