build method

ACDDialog build([
  1. BuildContext? ctx
])

Implementation

ACDDialog build([BuildContext? ctx]) {
  if (ctx == null && _context != null) {
    context = _context;
    return this;
  }
  context = ctx;
  return this;
}