fromJson static method

Variable fromJson(
  1. Map<String, dynamic> json
)
override

Implementation

static Variable fromJson(Map<String, dynamic> json) =>
    ListViewControllerVariable(
      id: json['id'],
      name: json['name'],
      scrollController: null,
    );