copy method
Creates a copy of this batch.
Implementation
AuthorizationBatch copy() {
final newBatch = AuthorizationBatch();
newBatch.addAll(_authorizations);
return newBatch;
}
Creates a copy of this batch.
AuthorizationBatch copy() {
final newBatch = AuthorizationBatch();
newBatch.addAll(_authorizations);
return newBatch;
}