AttributeInteger.fromMap constructor
AttributeInteger.fromMap(
- Map<String, dynamic> map
)
Implementation
factory AttributeInteger.fromMap(Map<String, dynamic> map) {
return AttributeInteger(
key: map['key'].toString(),
type: map['type'].toString(),
status: map['status'].toString(),
error: map['error'].toString(),
xrequired: map['required'],
array: map['array'],
$createdAt: map['\$createdAt'].toString(),
$updatedAt: map['\$updatedAt'].toString(),
min: map['min'],
max: map['max'],
xdefault: map['default'],
);
}