toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'feature'] = this.feature;
    json[r'isEnabled'] = this.isEnabled;
  if (this.limit != null) {
    json[r'limit'] = this.limit;
  } else {
    json[r'limit'] = null;
  }
    json[r'usage'] = this.usage;
  return json;
}