Trying to convert DateTime.now() to this: 2019-06-04T12:08:56.235-0700
The API documentation insists that's Data format: yyyy-MM-dd'T'HH:mm:ss.SSS'Z' but I can't figure it out for Dart. Not even python for that matter.
I've tried now.toIso8601String() but it doesn't quite nail it (i.e. 2019-12-03T17:50:23.476164). It's missing the last - section and one digit. The API call within flutter returns a {code:415 message HTTP 415 Unsupported Media Type} as a result.
What am I missing?