ScalerModel class

A serializable model structure for scalers like MinMax or Standard.

Constructors

ScalerModel.new({required String type, required double min, required double max, required List<double> featureMin, required List<double> featureMax})
ScalerModel.fromJson(Map<String, dynamic> json)
Create from JSON-like Map
factory

Properties

featureMax List<double>
final
featureMin List<double>
final
hashCode int
The hash code for this object.
no setterinherited
max double
final
min double
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String
final

Methods

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

Operators

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