SimpleValueFormat<T extends Object> constructor

const SimpleValueFormat<T extends Object>({
  1. PlatformCodec<T>? android,
  2. PlatformCodec<T>? ios,
  3. PlatformCodec<T>? linux,
  4. PlatformCodec<T>? macos,
  5. PlatformCodec<T>? windows,
  6. PlatformCodec<T>? web,
  7. PlatformCodec<T> fallback = const SimplePlatformCodec(formats: []),
})

Implementation

const SimpleValueFormat({
  this.android,
  this.ios,
  this.linux,
  this.macos,
  this.windows,
  this.web,
  this.fallback = const SimplePlatformCodec(formats: []),
});