toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final value = this.value;
  final replace = this.replace;
  return {
    'Name': name,
    'Value': value,
    if (replace != null) 'Replace': replace,
  };
}