toJson method

Map<String, dynamic> toJson()

Returned JSON Map object from values of this object

Implementation

Map<String, dynamic> toJson() {
  return <String, dynamic>{'value': _value};
}