getPlatformsListDoubleAuth method

Future<List<PlatformModel>> getPlatformsListDoubleAuth([
  1. dynamic display
])

Implementation

Future<List<PlatformModel>> getPlatformsListDoubleAuth([display]) async {
  NetworkResponse response =
      await _api.getPlatformsListDoubleAuth({'display': display ?? 1});
  return response.data ?? [];
}