isSuccess static method

bool isSuccess(
  1. String result
)

Implementation

static bool isSuccess(String result) {
  final model = AWParseNativeModel.fromJson(
      json.decode(result) as Map<String, dynamic>);
  return model.result == true;
}