action property

String? get action

Implementation

String? get action {
  return _json['action'] as String?;
}
set action (String? value)

Implementation

set action(String? value) {
  if (value == null) {
    _json.remove('action');
  } else {
    _json['action'] = value;
  }
}