toTimestampString function

String? toTimestampString(
  1. String? value
)

Fixes timestamp to be ISO-8601. Swaps the space between the date and time for a 'T' See https://github.com/supabase/supabase/issues/18

@example toTimestampString('2019-09-10 00:00:00')
=> '2019-09-10T00:00:00'

Implementation

String? toTimestampString(String? value) {
  if (value != null) {
    return value.replaceAll(' ', 'T');
  }
  return null;
}