encode method

Map<String, Object?> encode()

Implementation

Map<String, Object?> encode() => {
  if (limit != null) 'limit': limit!.toTfJson(),
  if (offset != null) 'offset': offset!.toTfJson(),
  if (status != null) 'status': status!.toTfJson(),
};