execute method

Future<T> execute(
  1. P param
)

Implementation

Future<T> execute(P param) async {
  /// Validate usecase
  /// Execute
  return await build(param).catchError((error) {
    handleError(error);
    throw error;
  });
}