Id.fromJson constructor

Id.fromJson(
  1. dynamic data
)

Implementation

factory Id.fromJson(dynamic data) {
  return Id(data['id']);
}