NotStatement.fromJson constructor

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

Implementation

factory NotStatement.fromJson(Map<String, dynamic> json) {
  return NotStatement(
    statement: Statement.fromJson(json['Statement'] as Map<String, dynamic>),
  );
}