fromJson static method

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

Implementation

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