PlatformStyleData constructor

const PlatformStyleData({
  1. PlatformStyle android = PlatformStyle.Material,
  2. PlatformStyle ios = PlatformStyle.Cupertino,
  3. PlatformStyle macos = PlatformStyle.Cupertino,
  4. PlatformStyle windows = PlatformStyle.Material,
  5. PlatformStyle web = PlatformStyle.Material,
  6. PlatformStyle fuchsia = PlatformStyle.Material,
  7. PlatformStyle linux = PlatformStyle.Material,
})

Implementation

const PlatformStyleData({
  this.android = PlatformStyle.Material,
  this.ios = PlatformStyle.Cupertino,
  this.macos = PlatformStyle.Cupertino,
  this.windows = PlatformStyle.Material,
  this.web = PlatformStyle.Material,
  this.fuchsia = PlatformStyle.Material,
  this.linux = PlatformStyle.Material,
});