repeatToJson method Null safety

Json repeatToJson(
  1. CountdownRepeat? instance
)

Allows creation of json representation of instance.

Example

@JsonKey(toJson: CountdownRepeat.repeatToJson)

Implementation

static Json repeatToJson(CountdownRepeat? instance) =>
    instance?.toJson() ?? {};