toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (mostRecentStartPosition != null)
    'mostRecentStartPosition': mostRecentStartPosition!,
  if (nextAvailableStartPosition != null)
    'nextAvailableStartPosition': nextAvailableStartPosition!,
  if (specificStartPosition != null)
    'specificStartPosition': specificStartPosition!,
};