customActionsFromJson function
Implementation
List<CustomAction> customActionsFromJson(String str) => List<CustomAction>.from(
json.decode(str).map((x) => CustomAction.fromJson(x)));
List<CustomAction> customActionsFromJson(String str) => List<CustomAction>.from(
json.decode(str).map((x) => CustomAction.fromJson(x)));