fromMeta static method

ServerFromJson? fromMeta(
  1. MetaFromJson? meta
)

Implementation

static ServerFromJson? fromMeta(MetaFromJson? meta) {
  if (meta == null) {
    return null;
  }

  return ServerFromJson(
    params: meta.params.map(ServerType.fromMeta).toList(),
  );
}