toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (busy != null) {
    _json[r'busy'] = busy;
  }
  if (expires != null) {
    _json[r'expires'] = expires;
  }
  return _json;
}