content<T> static method

AppAmbitCmsQuery<T> content<T>(
  1. String contentType, {
  2. required T fromJson(
    1. Map<String, dynamic>
    ),
})

Implementation

static AppAmbitCmsQuery<T> content<T>(
  String contentType, {
  required T Function(Map<String, dynamic>) fromJson,
}) {
  return AppAmbitCmsQuery<T>(contentType, fromJson: fromJson);
}