listFromJson static method

List<LoginResultDto?>? listFromJson(
  1. dynamic json, {
  2. bool? emptyIsNull,
  3. bool? growable,
})

Implementation

static List<LoginResultDto?>? listFromJson(
  dynamic json, {
  bool? emptyIsNull,
  bool? growable,
}) =>
    json is List && json.isNotEmpty
        ? json.map(LoginResultDto.fromJson).toList(growable: true == growable)
        : true == emptyIsNull
            ? null
            : <LoginResultDto>[];