Complete.fromJson constructor

Complete.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Complete.fromJson(Map<String, dynamic> json) => Complete(
      completeIdentifier: json['complete_identifier'] as String,
      completedAt: json['completed_at'] as String,
    );