getDecodedRecapFromResources static method

Map<String, dynamic>? getDecodedRecapFromResources({
  1. List<String>? resources,
})

Implementation

static Map<String, dynamic>? getDecodedRecapFromResources({
  List<String>? resources,
}) {
  final resource = getRecapFromResources(resources: resources);
  if (resource == null) return null;
  if (!isRecap(resource)) return null;
  return decodeRecap(resource);
}