AppStoreGenericResponse<T1 extends Serializable, T2 extends Serializable> constructor Null safety

const AppStoreGenericResponse<T1 extends Serializable, T2 extends Serializable>(
  1. {Meta meta = const Meta(),
  2. List<T1> items = const [],
  3. List<T2>? included = const [],
  4. List links = const []}
)

A generic response from the App Store Connect API.

Implementation

const AppStoreGenericResponse({
  this.meta = const Meta(),
  this.items = const [],
  this.included = const [],
  this.links = const [],
});