toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() {
  return {
    'type': 'submitForm',
    'url': url,
    if (flags != null) 'flags': flags,
    if (subAction != null) 'subAction': subAction!.toJson(),
  };
}