PageAspectRatio.fromJson constructor

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

Implementation

factory PageAspectRatio.fromJson(Map<String, dynamic> json) =>
    PageAspectRatio(width: json["width"], height: json["height"]);