parse static method

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

Implementation

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