parse static method

OpenFileList? parse(
  1. Map<String, dynamic>? json
)
override

Implementation

static OpenFileList? parse(Map<String, dynamic>? json) =>
    json == null ? null : OpenFileList._fromJson(json);