AsyncId.fromJson constructor

AsyncId.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory AsyncId.fromJson(Map<String, Object?> json) {
  return AsyncId(
    asyncId: json[r'asyncId'] as String? ?? '',
  );
}