RePlurkResult.fromJson constructor

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

Implementation

RePlurkResult.fromJson(Map<String, dynamic> json) {
  success = json['success'];
  error = json['error'];
}