ProfileBannerVariant constructor

const ProfileBannerVariant({
  1. @JsonKey(name: 'h') required int height,
  2. @JsonKey(name: 'w') required int width,
  3. required String url,
})

Implementation

const factory ProfileBannerVariant({
  /// The height of this image.
  @JsonKey(name: 'h') required int height,

  /// The height of this image.
  @JsonKey(name: 'w') required int width,

  /// The url of this image.
  required String url,
}) = _ProfileBannerVariant;