toArgMap method

Map<String, Object?> toArgMap()

Implementation

Map<String, Object?> toArgMap() => {
  if (initialDelaySec != null)
    'initial_delay_sec': initialDelaySec!.toTfJson(),
  if (mode != null) 'mode': mode!.toTfJson(),
};