customActionsFromJson function

List<CustomAction> customActionsFromJson(
  1. String str
)

Implementation

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